home *** CD-ROM | disk | FTP | other *** search
- function FUIComponentClass()
- {
- this.init();
- }
- function()
- {
- this.enable = true;
- this.focused = false;
- this.useHandCursor = false;
- this._accImpl = new Object();
- this._accImpl.stub = true;
- this.styleTable = new Array();
- if(_global.globalStyleFormat == undefined)
- {
- _global.globalStyleFormat = new FStyleFormat();
- globalStyleFormat.isGlobal = true;
- _global._focusControl = new Object();
- _global._focusControl.onSetFocus = function(oldFocus, newFocus)
- {
- oldFocus.myOnKillFocus();
- newFocus.myOnSetFocus();
- };
- Selection.addListener(_global._focusControl);
- }
- if(this._name != undefined)
- {
- this._focusrect = false;
- this.tabEnabled = true;
- this.focusEnabled = true;
- this.tabChildren = false;
- this.tabFocused = true;
- }
- }
- FUIComponentClass.prototype = new MovieClip();
- FUIComponentClass.prototype;
- "init";
-